home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / minix / includ~1.z / includ~1 / termio.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-10-11  |  2.3 KB  |  126 lines

  1. #ifndef _TERMIO_H
  2. #define _TERMIO_H
  3.  
  4. #include <sgtty.h>
  5. #define    NCC    8
  6.  
  7. /*
  8.  * Ioctl control packet
  9.  */
  10. struct termio {
  11.     unsigned short    c_iflag;    /* input modes */
  12.     unsigned short    c_oflag;    /* output modes */
  13.     unsigned short    c_cflag;    /* control modes */
  14.     unsigned short    c_lflag;    /* line discipline modes */
  15.     char    c_line;        /* for UNIX V compatibility */
  16.     unsigned char    c_cc[NCC];    /* control chars */
  17. };
  18.  
  19.  
  20. /* control characters */
  21. #define    VINTR    0
  22. #define    VQUIT    1
  23. #define    VERASE    2
  24. #define    VKILL    3
  25. #define    VEOF    4
  26. #define    VEOL    5
  27. #define    VEOL2    6
  28. #define    VMIN    4
  29. #define    VTIME    5
  30.  
  31. /* default control chars */
  32. #define    CINTR    0177    /* DEL */
  33. #define    CQUIT    034    /* FS, cntl | */
  34. #define    CERASE    '#'
  35. #define    CKILL    '@'
  36. #define    CEOF    04    /* cntl d */
  37. #define    CSTART    021    /* cntl q */
  38. #define    CSTOP    023    /* cntl s */
  39.  
  40. /* input modes */
  41. #define    IGNBRK    0000001
  42. #define    BRKINT    0000002
  43. #define    IGNPAR    0000004
  44. #define    PARMRK    0000010
  45. #define    INPCK    0000020
  46. #define    ISTRIP    0000040
  47. #define    INLCR    0000100
  48. #define    IGNCR    0000200
  49. #define    ICRNL    0000400
  50. #define    IUCLC    0001000
  51. #define    IXON    0002000
  52. #define    IXANY    0004000
  53. #define    IXOFF    0010000
  54.  
  55. /* output modes */
  56. #define    OPOST    0000001
  57. #define    OLCUC    0000002
  58. #define    ONLCR    0000004
  59. #define    OCRNL    0000010
  60. #define    ONOCR    0000020
  61. #define    ONLRET    0000040
  62. #define    OFILL    0000100
  63. #define    OFDEL    0000200
  64. #define    NLDLY    0000400
  65. #define    NL0    0
  66. #define    NL1    0000400
  67. #define    CRDLY    0003000
  68. #define    CR0    0
  69. #define    CR1    0001000
  70. #define    CR2    0002000
  71. #define    CR3    0003000
  72. #define    TABDLY    0014000
  73. #define    TAB0    0
  74. #define    TAB1    0004000
  75. #define    TAB2    0010000
  76. #define    TAB3    0014000
  77. #define    BSDLY    0020000
  78. #define    BS0    0
  79. #define    BS1    0020000
  80. #define    VTDLY    0040000
  81. #define    VT0    0
  82. #define    VT1    0040000
  83. #define    FFDLY    0100000
  84. #define    FF0    0
  85. #define    FF1    0100000
  86.  
  87. /* control modes */
  88. #define    CBAUD    0000017
  89. #define    CSIZE    0000060
  90. #define    CS5    0
  91. #define    CS6    0000020
  92. #define    CS7    0000040
  93. #define    CS8    0000060
  94. #define    CSTOPB    0000100
  95. #define    CREAD    0000200
  96. #define    PARENB    0000400
  97. #define    PARODD    0001000
  98. #define    HUPCL    0002000
  99. #define    CLOCAL    0004000
  100.  
  101. /* line modes */
  102. #define    ISIG    0000001
  103. #define    ICANON    0000002
  104. #define    XCASE    0000004
  105. #define    ECHO    0000010
  106. #define    ECHOE    0000020
  107. #define    ECHOK    0000040
  108. #define    ECHONL    0000100
  109. #define    NOFLSH    0000200
  110.  
  111. /*
  112.  * TCXONC sub commands
  113.  */
  114.  
  115. #define    T_SUSPEND    0
  116. #define    T_RESUME    1
  117. #define    T_BLOCK        2
  118. #define    T_UNBLOCK    3
  119.  
  120. struct ttsig    {
  121.     short    t_inotmt;
  122.     short    t_onotfl;
  123. };
  124.  
  125. #endif /* _TERMIO_H */
  126.